home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / dsiic2.zip / HELP.H < prev    next >
C/C++ Source or Header  |  1991-07-29  |  1KB  |  36 lines

  1. /**********************   HELP.H   ***************************/
  2.  
  3. /* function prototypes */
  4.  
  5. /* makehelp.c */
  6.  
  7. void edit(int x, int y);
  8. int get_size(void);
  9. int val_field( char *string,int length,int field_number);
  10.  
  11. /* hlp_menu.c */
  12.  
  13. void main_menu(void);
  14. int browse(void);
  15. int file(void);
  16. int verify_save(void);
  17. int add(void);
  18. void status(int page);
  19.  
  20. /* hlp_io */
  21.  
  22. void get_name(char *filename);
  23. int save_page(int page);
  24. int load_page(int page);
  25. int append(char *filename, char *buffer, int page_size);
  26.  
  27. struct hlp{
  28.         int width;            /* the width of the edit window */
  29.         int height;           /* the height of the edit window */
  30.         char filename[80];    /* name of the help file in use */
  31.         int number_pages;     /* the number of pages in the file */
  32.         int edit;             /* handle for edit window */
  33.         int menu;             /* handle for the menu window */
  34.         int status;           /* handle for the status window */
  35.         };
  36.